From: Chong Yidong Date: Thu, 16 Apr 2009 04:31:13 +0000 (+0000) Subject: * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~816 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6b22a9d6557cdc1cfcc87496a5a99d63da299428;p=emacs.git * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt property (Bug#2984). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e6f4f5b71d7..bd4c1508c97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-04-16 Robert Brown (tiny change) + + * emacs-lisp/lisp-mode.el: Give `deftype' a doc-string-elt + property (Bug#2984). + 2009-04-16 Leo (tiny change) * ediff-wind.el (ediff-make-wide-display): Fix typo in frame diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index bd330a727c3..3e3d3960f97 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -132,6 +132,7 @@ (put 'defvar 'doc-string-elt 3) (put 'defcustom 'doc-string-elt 3) (put 'deftheme 'doc-string-elt 2) +(put 'deftype 'doc-string-elt 3) (put 'defconst 'doc-string-elt 3) (put 'defmacro 'doc-string-elt 3) (put 'defmacro* 'doc-string-elt 3)